home *** CD-ROM | disk | FTP | other *** search
- this.onEnterFrame = function()
- {
- if(this._parent.getBytesLoaded() >= this._parent.getBytesTotal())
- {
- this._parent.gotoAndStop("introL");
- this.onEnterFrame = null;
- }
- else
- {
- this.barM._xscale = this._parent.getBytesLoaded() / this._parent.getBytesTotal() * 100;
- this.win.text = this._parent.getBytesLoaded() + " / " + this._parent.getBytesTotal() + " Bytes";
- }
- };
-